home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 14439 / 14439.xpi / chrome / tabber.jar / content / tabprogressbar.js < prev    next >
Text File  |  2009-10-23  |  8KB  |  266 lines

  1. /*
  2.  
  3. Tab Progress Bar
  4. Reference: Informational Tab by SHIMODA Hiroshi
  5. Revisions by Frank Yan - 2009.10.05
  6.  
  7. ***** BEGIN LICENSE BLOCK *****
  8. Version: MPL 1.1/GPL 2.0/LGPL 2.1
  9.  
  10. The contents of this file are subject to the Mozilla Public License Version
  11. 1.1 (the "License"); you may not use this file except in compliance with
  12. the License. You may obtain a copy of the License at
  13. http://www.mozilla.org/MPL/
  14.  
  15. Software distributed under the License is distributed on an "AS IS" basis,
  16. WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  17. for the specific language governing rights and limitations under the
  18. License.
  19.  
  20. The Original Code is the Informational Tab.
  21.  
  22. The Initial Developer of the Original Code is SHIMODA Hiroshi.
  23. Portions created by the Initial Developer are Copyright (C) 2007-2009
  24. the Initial Developer. All Rights Reserved.
  25.  
  26. Contributor(s): SHIMODA Hiroshi <piro@p.club.ne.jp>
  27.  
  28. Alternatively, the contents of this file may be used under the terms of
  29. either the GNU General Public License Version 2 or later (the "GPL"), or
  30. the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  31. in which case the provisions of the GPL or the LGPL are applicable instead
  32. of those above. If you wish to allow use of your version of this file only
  33. under the terms of either the GPL or the LGPL, and not to allow others to
  34. use your version of this file under the terms of the MPL, indicate your
  35. decision by deleting the provisions above and replace them with the notice
  36. and other provisions required by the GPL or the LGPL. If you do not delete
  37. the provisions above, a recipient may use your version of this file under
  38. the terms of any one of the MPL, the GPL or the LGPL.
  39.  
  40. ***** END LICENSE BLOCK *****
  41.  
  42. */
  43.  
  44. var TabProgressBarService = { 
  45.     disabled : false,
  46.  
  47. /* Utilities */ 
  48.  
  49.     get browser() 
  50.     {
  51.         return gBrowser;
  52.     },
  53.  
  54.     getTabs : function(aTabBrowser) 
  55.     {
  56.         return aTabBrowser.ownerDocument.evaluate(
  57.                 'descendant::*[local-name()="tab"]',
  58.                 aTabBrowser.mTabContainer,
  59.                 null,
  60.                 XPathResult.ORDERED_NODE_SNAPSHOT_TYPE,
  61.                 null
  62.             );
  63.     },
  64.   
  65. /* Initializing */ 
  66.  
  67.     init : function() 
  68.     {
  69.         if (!('gBrowser' in window)) return;
  70.  
  71.         window.removeEventListener('load', this, false);
  72.  
  73.         document.getElementById('statusbar-progresspanel').setAttribute('tabprogressbar-hidden', true);
  74.  
  75.         this.initTabBrowser(gBrowser);
  76.  
  77.         this.initialized = true;
  78.     },
  79.  
  80.     initTabBrowser : function(aTabBrowser) 
  81.     {
  82.         let (tabs, i, maxi, listener) {
  83.             tabs = this.getTabs(aTabBrowser);
  84.             for (i = 0, maxi = tabs.snapshotLength; i < maxi; i++)
  85.             {
  86.                 this.initTab(tabs.snapshotItem(i), aTabBrowser);
  87.             }
  88.  
  89.             aTabBrowser.addEventListener('TabSelect', this, false);
  90.             aTabBrowser.addEventListener('TabOpen',  this, false);
  91.             aTabBrowser.addEventListener('TabClose', this, false);
  92.             aTabBrowser.addEventListener('TabMove',  this, false);
  93.         }
  94.  
  95.         if ('swapBrowsersAndCloseOther' in aTabBrowser) {
  96.             eval('aTabBrowser.swapBrowsersAndCloseOther = '+aTabBrowser.swapBrowsersAndCloseOther.toSource().replace(
  97.                 '{',
  98.                 '{ TabProgressBarService.destroyTab(aOurTab);'
  99.             ).replace(
  100.                 'if (aOurTab == this.selectedTab) {this.updateCurrentBrowser(',
  101.                 'TabProgressBarService.initTab(aOurTab); $&'
  102.             ));
  103.         }
  104.     },    
  105.  
  106.     initTab : function(aTab, aTabBrowser) 
  107.     {
  108.         if (aTab.__tabprogressbar__progressListener) return;
  109.  
  110.         var filter = Components
  111.                 .classes['@mozilla.org/appshell/component/browser-status-filter;1']
  112.                 .createInstance(Components.interfaces.nsIWebProgress);
  113.         var listener = new TabProgressBarProgressListener(aTab, aTabBrowser);
  114.         filter.addProgressListener(listener, Components.interfaces.nsIWebProgress.NOTIFY_ALL);
  115.         aTab.linkedBrowser.webProgress.addProgressListener(filter, Components.interfaces.nsIWebProgress.NOTIFY_ALL);
  116.         aTab.__tabprogressbar__progressListener = listener;
  117.         aTab.__tabprogressbar__progressFilter   = filter;
  118.     },
  119.   
  120.     destroy : function() 
  121.     {
  122.         this.destroyTabBrowser(gBrowser);
  123.  
  124.         window.removeEventListener('unload', this, false);
  125.     },
  126.  
  127.     destroyTabBrowser : function(aTabBrowser) 
  128.     {
  129.         aTabBrowser.removeEventListener('TabSelect', this, false);
  130.         aTabBrowser.removeEventListener('TabOpen',  this, false);
  131.         aTabBrowser.removeEventListener('TabClose', this, false);
  132.         aTabBrowser.removeEventListener('TabMove',  this, false);
  133.  
  134.         var tabs = this.getTabs(aTabBrowser);
  135.         for (var i = 0, maxi = tabs.snapshotLength; i < maxi; i++)
  136.         {
  137.             this.destroyTab(tabs.snapshotItem(i));
  138.         }
  139.     },
  140.  
  141.     destroyTab : function(aTab) 
  142.     {
  143.         try {
  144.             aTab.linkedBrowser.webProgress.removeProgressListener(aTab.__tabprogressbar__progressFilter);
  145.             aTab.__tabprogressbar__progressFilter.removeProgressListener(aTab.__tabprogressbar__progressListener);
  146.  
  147.             delete aTab.__tabprogressbar__progressListener.mLabel;
  148.             delete aTab.__tabprogressbar__progressListener.mTab;
  149.             delete aTab.__tabprogressbar__progressListener.mTabBrowser;
  150.  
  151.             delete aTab.__tabprogressbar__progressFilter;
  152.             delete aTab.__tabprogressbar__progressListener;
  153.         }
  154.         catch(e) {
  155.             dump(e+'\n');
  156.         }
  157.     },
  158.   
  159.     disableAllFeatures : function() 
  160.     {
  161.         this.disabled = true;
  162.     },
  163.     enableAllFeatures : function()
  164.     {
  165.         this.disabled = false;
  166.     },
  167.  
  168. /* Event Handling */ 
  169.  
  170.     handleEvent : function(aEvent) 
  171.     {
  172.         switch (aEvent.type)
  173.         {
  174.             case 'load':
  175.                 this.init();
  176.                 break;
  177.  
  178.             case 'unload':
  179.                 this.destroy();
  180.                 break;
  181.  
  182.             case 'TabSelect':
  183.                 break;
  184.  
  185.             case 'TabOpen':
  186.                 this.initTab(aEvent.originalTarget, aEvent.currentTarget);
  187.                 break;
  188.  
  189.             case 'TabClose':
  190.                 this.destroyTab(aEvent.originalTarget, aEvent.currentTarget);
  191.                 break;
  192.  
  193.             case 'TabMove':
  194.                 if (this.disabled) return;
  195.                 var b = aEvent.originalTarget;
  196.                 while (b.localName != 'tabbrowser')
  197.                     b = b.parentNode;
  198.                 this.destroyTab(aEvent.originalTarget);
  199.                 this.initTab(aEvent.originalTarget, b);
  200.                 break;
  201.         }
  202.     }
  203. }; 
  204.  
  205. window.addEventListener('load', TabProgressBarService, false);
  206. window.addEventListener('unload', TabProgressBarService, false);
  207.  
  208. function TabProgressBarProgressListener(aTab, aTabBrowser) 
  209. {
  210.     this.mTab = aTab;
  211.     this.mLabel = document.getAnonymousElementByAttribute(this.mTab, 'class', 'tab-text');
  212.     this.mTabBrowser = aTabBrowser;
  213. }
  214. TabProgressBarProgressListener.prototype = {
  215.     mTab        : null,
  216.     mLabel      : null,
  217.     mTabBrowser : null,
  218.     onProgressChange: function(aWebProgress, aRequest, aCurSelfProgress, aMaxSelfProgress, aCurTotalProgress, aMaxTotalProgress)
  219.     {
  220.         if (aMaxTotalProgress < 1)
  221.             return;
  222.  
  223.         var percentage = parseInt((aCurTotalProgress * 100) / aMaxTotalProgress);
  224.  
  225.         if (!gBrowser.mPrefs.getBoolPref('tabberwocky.tabprogressbar'))
  226.             this.mLabel.removeAttribute('tabprogressbar-progress');
  227.         else
  228.             this.updateProgress(this.mLabel, 'tabprogressbar-progress', percentage);
  229.     },
  230.     updateProgress : function(aTarget, aAttr, aPercentage)
  231.     {
  232.         if (aPercentage > 0 && aPercentage < 100) {
  233.             aTarget.setAttribute(aAttr, aPercentage);
  234.         }
  235.         else if (aPercentage <= 0 || aPercentage >= 100) {
  236.             aTarget.removeAttribute(aAttr);
  237.         }
  238.     },
  239.     onStateChange : function(aWebProgress, aRequest, aStateFlags, aStatus)
  240.     {
  241.         const nsIWebProgressListener = Components.interfaces.nsIWebProgressListener;
  242.         if (
  243.             aStateFlags & nsIWebProgressListener.STATE_STOP &&
  244.             aStateFlags & nsIWebProgressListener.STATE_IS_NETWORK
  245.             ) {
  246.             this.mLabel.removeAttribute('tabprogressbar-progress');
  247.         }
  248.     },
  249.     onLocationChange : function(aWebProgress, aRequest, aLocation)
  250.     {
  251.     },
  252.     onStatusChange : function(aWebProgress, aRequest, aStatus, aMessage)
  253.     {
  254.     },
  255.     onSecurityChange : function(aWebProgress, aRequest, aState)
  256.     {
  257.     },
  258.     QueryInterface : function(aIID)
  259.     {
  260.         if (aIID.equals(Components.interfaces.nsIWebProgressListener) ||
  261.             aIID.equals(Components.interfaces.nsISupportsWeakReference) ||
  262.             aIID.equals(Components.interfaces.nsISupports))
  263.             return this;
  264.         throw Components.results.NS_NOINTERFACE;
  265.     }
  266. };